home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / converr.sql < prev    next >
Text File  |  2000-05-12  |  649b  |  19 lines

  1. /* RCSVER $Id: converr.sql,v 1.1 1999-03-01 13:15:58-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        converr.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the converr table. This table contains all the 
  9. *        possible errors that can occur during the probed data
  10. *        conversion.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE converr
  14. (
  15.     err_type    NUMBER(38),
  16.     descr        VARCHAR2(80),
  17.     CONSTRAINT pk_converr PRIMARY KEY (err_type)
  18. );
  19.